home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
AppleEvents
/
Events
/
AEAttribute.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
483b
|
26 lines
// AEAttribute.h
#ifndef AEAttribute_h
#define AEAttribute_h
#ifndef ConstAEAttribute_h
#include "ConstAEAttribute.h"
#endif
class AEDescriptor;
class AEAttribute: public ConstAEAttribute
{
public:
AEAttribute( AEEvent& theEvent, AEKey theKey )
: ConstAEAttribute( theEvent, theKey )
{}
AEEvent& Event() const { return const_cast<AEEvent&>( ConstAEAttribute::Event() ); }
void operator=( const AEDescriptor& );
void Set( AEType, ConstData );
};
#endif